home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / DELPHI32 / PRINTING / PAGESET / PAGESET.ZIP / DemoPrj.dpr < prev    next >
Text File  |  1996-09-12  |  266b  |  16 lines

  1. program DemoPrj;
  2.  
  3. uses
  4.   Forms,
  5.   Demo in 'Demo.pas' {Form1},
  6.   AboutWnd in 'AboutWnd.pas' {About};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.CreateForm(TForm1, Form1);
  13.   Application.CreateForm(TAbout, About);
  14.   Application.Run;
  15. end.
  16.